php get time in milliseconds

55

php get time in milliseconds -

$milliseconds = round(microtime(true) * 1000);

show date time with milliseconds php -

$now = DateTime::createFromFormat('U.u', microtime(true));
echo $now->format("m-d-Y H:i:s.u");

time now with milliseconds php -

$d = new DateTime();
echo $d->format("Y-m-d H:i:s.v"); // v : Milliseconds 

Comments

Submit
0 Comments